home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- set -e
-
- if [ "$1" = "triggered" ]; then
- if [ -x /usr/bin/update-mime-database.real ]; then
- update-mime-database.real /usr/share/mime
- fi
- exit 0
- fi
-
- if [ -x /usr/bin/update-mime-database.real ]; then
- update-mime-database.real /usr/share/mime
- fi
-
- # Automatically added by dh_installdocs
- if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
- install-docs -i /usr/share/doc-base/shared-mime-info
- fi
- # End automatically added section
- # Automatically added by dh_installmime
- if [ "$1" = "configure" ] && [ -x "`which update-mime-database 2>/dev/null`" ]; then
- update-mime-database /usr/share/mime
- fi
- # End automatically added section
-
-